home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / filesy~1 / mfs610s.zoo / minixfs / stack.s < prev    next >
Encoding:
Text File  |  1993-11-25  |  175 b   |  8 lines

  1.     .globl    _setstack
  2. _setstack:
  3.     movel    sp@+, a0    | save return address
  4.     movel    sp@, sp        | new stack pointer
  5.     subql    #4, sp        | fixup for tidy upon return
  6.     jmp    a0@        | back to caller
  7.  
  8.